@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

:root {
    --main-color: #f08c41;
    --color-dark: #1b1b1b;
    --text-color: #1f1f1f;
    --text-grey: #fff;
    --header-color: #505050;
    --background: #950740;
    --second-bg: #364677;
    --big-font: 3.5rem;
    --medium-font: 2.5rem;
    --p-font: 1.1rem;
    --box-shadow: 0 0px 60px 0 rgba(0, 0, 0, 1);
    --nav_color: #fbeae0;
    --book-trailer-bg: #3d4d62;
    --footer-bg: #1d0f0c;
    --active-color: #f0d7a6;
    --nav_list_active: #7f5539;
    --nav_list_color: #a78066;
    --background-transparent: #fbeae04d;

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Crimson Text', serif;
}

::selection {
    color: #fff;
    background-color: var(--main-color);
}

/* Target the entire scrollbar */
::-webkit-scrollbar {
    width: 5px;
    /* Width of the scrollbar */
}

/* Style the track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background: var(--nav_color);
    /* Light grey background */
}

/* Style the scrollbar thumb (the moving handle) */
::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    /* Dark grey color */
    border-radius: 6px;
}

/* Hover effect for the scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
    /* Darker color on hover */
}

body {
    color: var(--text-grey);
    overflow-x: hidden;
}

/* HEADER */
.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

header.sticky {
    background-color: var(--nav_color);
    box-shadow: var(--box-shadow);
    transition: all .4s ease-in-out;
}

header.sticky .nav-list .active {
    color: var(--nav_list_active);
}

header.sticky .nav-link {
    color: var(--nav_list_color);
}

header {
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: .5rem 5rem;
}

.header {
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 100;
    transition: box-shadow .4s;
}

.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .nav-logo{
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 600;
} */
/* .nav-logo span{
    color: #fff;
} */

.nav-logo img {
    max-width: 100%;
    width: 15vw;
}

.nav-toggle div,
.nav-closeBtn div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50px !important;
}

.nav-closeBtn,
.nav-toggle {
    color: var(--nav_color);
    font-size: 1rem;
    cursor: pointer;
    display: none;
    background-color: transparent;
    transition: all .3s ease-in-out;
    border-radius: 50px;
}

header.sticky .nav-closeBtn,
header.sticky .nav-toggle {
    color: var(--nav_list_color);
}

.nav-list .active {
    color: var(--active-color);
}

.nav-closeBtn:hover,
.nav-toggle:hover {
    color: var(--nav_list_color);
    background-color: var(--nav_list_active);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    html {
        font-size: 75%;
    }
}

@media screen and (max-width: 1024px) {
    .nav-link {
    color: var(--nav_list_color) !important;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color .3s;
}
    .nav__menu {
        display: flex;
        column-gap: 3rem;
        align-items: self-start !important;
    }

    /* The nav menu itself */
    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        padding: 7rem 2.5rem 2rem 2.5rem;
        background-color: var(--nav_color);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: top .9s;
        z-index: 102;
        /* Ensure it's above the overlay */
    }

    /* Background overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        /* semi-transparent dark background */
        opacity: 0;
        pointer-events: none;
        /* so it doesn't interfere with clicks */
        transition: opacity .4s;
        z-index: 101;
        /* just below the navbar */
    }

    /* The close button and toggle button */
    .nav-closeBtn,
    .nav-toggle {
        display: block !important;
    }

    /* .nav-closeBtn,
    .nav-toggle {
        color: var(--nav_list_color);
    } */
    /* The logo */
    .nav-logo {
        z-index: 103;
    }

    /* The navigation list and social accounts */
    .nav-list {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        row-gap: 3rem;
        margin-top: 2rem;
    }

    /* Position of the close button */
    .nav-closeBtn {
        position: absolute;
        top: 1.5rem !important;
        right: 5rem !important;
    }

    /* When the menu is open, show the overlay and slide in the menu */
    .nav__menu.open {
        left: 0;
        /* Move the menu into view */
    }

    .nav-overlay.open {
        opacity: 1;
        /* Make the overlay visible */
        pointer-events: auto;
        /* Enable interaction with the overlay */
    }

    .social-accounts {
        display: block !important;
    }

    .social-account-flex {
        display: flex !important;
    }
}


@media screen and (max-width: 768px) {
    header {
        padding: .5rem 0rem;
    }

    section {
        padding: 1rem !important;
    }

    .nav-logo img {
        max-width: 100%;
        width: 30vw !important;
    }

    .nav {
        position: relative;
        height: 5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 1.5rem;
    }

    /* .nav__menu {
        padding: 7rem 1.5rem 2rem 9rem;

    } */

    .nav-closeBtn {
        position: absolute;
        top: 1.6rem !important;
        right: 1.3rem !important;
        color: var(--nav_list_color);
    }

    .nav-link {
        color: var(--nav_list_color) !important;
    }

    .nav-list .active {
        color: var(--nav_list_active) !important;
    }

    .nav-link:hover {
        color: var(--nav_list_active) !important;
    }

    .heading-title {
        margin-top: 7rem !important;
    }

    .home {
        height: auto;
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 5rem;
    }

    .home-content {
        order: 2;
    }

    .home-img {
        margin: auto;
        height: auto;
        width: auto;
    }

    .home-img img {
        width: 80vw !important;
        max-width: 100%;
        height: auto;
        margin-top: 5%;
    }

    .home-content h1 {
        font-size: var(--medium-font) !important;
    }

    .home-img,
    .home-content {
        width: 100% !important;
    }

    .about {
        flex-direction: column;
        gap: 2rem !important;
    }

    .about img {
        width: 100vw !important;
        margin-top: 2rem;
    }

    .show-scroll {
        bottom: 1rem !important;
    }

    .scrollUp {
        padding: 1.5rem !important;
        font-size: .7rem !important;
        right: 2rem !important;
    }
}

.nav__menu {
    display: flex;
    column-gap: 3rem;
    align-items: center;
}

.nav-list,
.social-accounts {
    display: flex;
    column-gap: 2rem;
    /* justify-content: center; */
}

.social-accounts {
    display: none;
}

.nav-link {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color .3s;
}

.nav-link:hover {
    color: var(--active-color);
}

header.sticky .nav-link:hover {
    color: var(--nav_list_active);
}

.social-accounts {
    column-gap: 1.5rem;
    align-self: flex-end;
}

.nav-social-link {
    color: #fff;
    font-size: 1.2rem;
    background: var(--nav_list_active);
    border: 2px solid var(--nav_list_active);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.nav-social-link:hover {
    color: var(--nav_list_active);
    background-color: transparent;
}

.show-menu {
    top: 0px !important;
}

.swiper {
    margin-top: -8rem;
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    width: 50% !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
}

.swiper-slide img {
    display: block;
    border-radius: 20px;

}

.swiper .swiper-wrapper .swiper-slide .image-container,
.swiper .swiper-wrapper .swiper-slide .book-details {
    width: 50%;
}

.swiper-button-next,
.swiper-button-prev {
    background: #ffffff9c;
    font-size: 10px !important;
    font-weight: 700;
    padding: 25px !important;
    border-radius: 50px;
    color: #000 !important;
    transition: all .3s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--main-color);
    color: #fff !important;
    box-shadow: 0px 0px 15px var(--shadow);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 20px !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 20px !important;
}

.swiper .swiper-wrapper .swiper-slide .book-details p {
    color: white;
    font-size: 20px;
}

@media (max-width: 768px) {
    .swiper-slide {
        flex-direction: column;
    }

    .swiper .swiper-wrapper .swiper-slide .image-container,
    .swiper .swiper-wrapper .swiper-slide .book-details {
        width: 100% !important;
    }
}

/* MAIN */

section {
    padding: 5rem;
    /* min-height: 100vh; */
}

.heading-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0rem 2rem;
    color: #fff !important;
}

.heading-title span {
    color: var(--main-color);
}


.about-title span {
    color: var(--main-color);
}

#services {
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the home section take up the full viewport */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Container for the content */
.home {
    padding-top: 2rem;
    position: relative;
    z-index: 1;
    /* Make sure the content stays above the video */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 1rem !important;
}

/* Styles for the video background */
#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Ensure the video stays behind all other content */
    pointer-events: none;
    /* Prevent the video from interfering with any mouse events */
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.home-content h3 {
    font-size: 2rem;
    font-weight: 700;
}

span {
    color: var(--main-color);
}

.home-content h1 {
    font-size: var(--big-font);
    text-align: left;
}

.home-img img {
    width: 60vw;
    max-width: 100%;
}

.home-content p {
    margin-top: 1rem;
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.5rem;
}

.main-btn {
    text-align: left;
}

.btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background-color: var(--main-color);
    border-radius: 4rem;
    border: 2px solid var(--main-color);
    /* box-shadow: 0 0 0.5rem var(--header-color); */
    font-size: 1rem;
    color: var(--text-grey);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: all 0.6s ease-in-out;
}

.btn:hover {
    background: transparent;
    color: var(--main-color);
}

.home-img img {
    animation: img 2s ease-in-out infinite;
    animation-delay: 2s;
}

.home-img,
.home-content {
    width: 50%;
}

#about {
    /* background-color: var(--color-dark); */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-image: url(../images/bg/about-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem 0rem;
    gap: 2rem;
}

.about .about-img img {
    border-radius: 5rem 0rem 5rem 0rem;
    width: 28vw;
    max-width: 100%;
    border: 5px solid var(--nav_color);
    padding: 0.5rem;
}

.about-img,
.about-content {
    width: 50%;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-content {
    background-color: var(--background-transparent);
    padding: 1rem;
    border-radius: 5rem 0rem;
    padding: 1rem;
    border-left: 10px solid var(--nav_color);
}
.about-content h2 {
    text-align: left;
    line-height: 1;
}

.about-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--nav_color);
    margin: 2rem 0rem 1rem;
}

.about-content h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 2rem;
}

@keyframes img {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* BOOKS */
#books {
    background-image: url(../images/bg/book-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.books {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

#books .books .books-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    /* margin-top: -8rem; */
}

#books .books .books-container img {
    max-width: 100%;
    width: 27vw;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}

#books .books .books-container img:hover {
    transform: translateY(-8px);
}

/* #books .books .books-container a {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-top: 1rem;
    background-color: var(--main-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--main-color);
    transition: all .3s ease-in-out;
} */

/* #books .books .books-container a:hover {
    background-color: transparent;
    color: var(--main-color);
    transform: translateY(-8px);
} */

#books .about .about-container .about-right {
    background-color: #107569;
    padding: 2rem;
    border-style: dashed;
    border-color: #fff;
    border-width: 5px;
    text-align: left;
}

.books-item-1,
.books-item-2 {
    width: 50%;
}

.books-item-1 {
    text-align: left;
}

/* .books-item-1 span {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 3rem;
    color: #fff;
    background: var(--nav_color);
    padding: .7rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--nav_color);
    cursor: pointer;
    transition: all .3s ease-in-out;
} */
.book_details_container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.book_image,
.book_details {
    width: 50%;
}

.books-item-1 span:hover {
    background: transparent;
    color: var(--nav_color);
}

.books-item-1 p {
    margin-top: 2rem;
    text-align: justify;
    line-height: 1.5rem;
}

.books-item-1 h3 {
    margin-top: 2rem;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}


/* Book Overlay */
.book-overlay {
    position: relative;
    overflow: hidden;
}

.book-overlay img {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
}

.book-overlay:hover img {
    transform: scale(1);
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-content p {
    font-size: 17px;
    margin-top: 1rem;
}

.book-overlay:hover .overlay-content {
    opacity: 1;
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    /* Enable scrolling for content */
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 2rem;
    width: 80%;
    max-width: 100%;
    text-align: center;
    position: relative;
    border-radius: 10px;
}

.modal-content .close{
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    transition: all .3s ease-in-out;
}
.modal-content .close:hover{
    color: var(--main-color);
}
#bookModal .modal-content h2,
#bookModal .modal-content h4,
#bookModal .modal-content p,
#bookModal-1 .modal-content h2,
#bookModal-1 .modal-content h4,
#bookModal-1 .modal-content p {
    color: #000 !important;
}

#bookModal .modal-content p,
#bookModal-1 .modal-content p {
    text-align: justify;
    margin-top: 1rem;
    font-size: 20px;
}

#bookModal .modal-content ul,
#bookModal-1 .modal-content ul {
    margin-top: 1rem !important;
    color: #000;
    text-align: justify;
}

/* Optional: Add animations for the modal */
.modal-content {
    animation: fadeIn 0.3s;
}

.book_image img {
    max-width: 100%;
    width: 80%;
}

.books_details_footer ul li span {
    color: #000 !important;
    font-weight: 700;
}
.books_details_footer ul li{
    color: #000 !important;
    font-size: 20px;
}
@media (max-width: 760px) {
    .book_details_container {
        flex-direction: column;
    }
    .book_image,
.book_details {
    width: 100% !important;
}
.books_details_footer ul li{
    font-size: 18px !important;
}
.books_details_footer ul{
    margin-top: 2rem !important;
}
.modal-content {
    width: 90% !important;
}
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.footer_book {
    margin-top: 2rem;
}

.footer_book li {
    border-bottom: 1px solid #6a6a6a;
    padding: .5rem 0rem 0.5rem;
    display: flex;
    gap: 1rem;
    font-weight: 600;
}

.footer_book li label {
    font-weight: 500;
    color: var(--main-color);
}

.footer_book li .book_title_bottom {
    background: transparent !important;
    border: none !important;
    font-size: none !important;
    display: block;
    font-weight: 600;
    color: var(--main-color);
    margin-top: 0rem !important;
    padding: 0rem !important;
    border-radius: none !important;
    transition: none;
}

.footer_book li .book_title_bottom:hover {
    color: var(--main-color) !important;
}

@media (max-width: 768px) {
    #books .books .books-container {
        flex-direction: column;
    }

    .books-item-1,
    .books-item-2 {
        width: 100% !important;
    }

    #books .books .books-container {

        padding: 0rem !important;
        margin-top: 5rem !important;
    }

    #books .books .books-container img {
        max-width: 100%;
        width: 100vw !important;

    }

    .books-item-1 h3 {
        margin-top: 2rem;
        font-size: 25px !important;
        font-weight: 700;
        text-transform: uppercase;
    }
}

/* BOOK TRAILER */
#selfie-videos {
    background-color: var(--book-trailer-bg);
}

.selfie-videos-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0rem 5rem 0rem 5rem;
}

.video-container-selfie-videos {
    display: flex;
    align-items: center;
    padding: 1rem 5%;
    justify-content: center;
}

.page-buttons-selfie-videos {
    display: flex;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.page-buttons-selfie-videos a {
    background: #D5B883;
    padding: .8rem;
    width: 140px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    border-radius: 10px;
    transition: All .3s ease-in-out;

}

.page-buttons-selfie-videos a:hover {
    background: #9F1620;
    color: #fff;
}

.page-button-selfie-videos.active {
    background: #9F1620;
    color: #fff;
}

.video-container-selfie-videos .video-player-selfie-videos {
    background-color: var(--nav_color);
    border-radius: 5px;
    padding: 10px;
}

.video-container-selfie-videos .video-player-selfie-videos video {
    width: 100%;
    border-radius: 5px;
}

.video-container-selfie-videos .video-list-selfie-videos {
    background: #eee;
    border-radius: 5px;
    height: 500px;
    overflow-y: scroll;
}

.video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar {
    width: 7px;
}

.video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar-track {
    background: #D5B883;
    border-radius: 50px;
}

.video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 50px;
}

.video-container-selfie-videos .video-list-selfie-videos .vidmultimedia video {
    width: 100px;
    height: 50px;
    border-radius: 3px;
}

.video-container-selfie-videos .video-list-selfie-videos .vidmultimedia {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f7f7;
    border-radius: 3px;
    margin: 10px;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
}

.video-container-selfie-videos .video-list-selfie-videos .vidmultimedia:hover {
    background: #D5B883;
}

.video-container-selfie-videos .video-list-selfie-videos .vidmultimedia.active {
    background: #D5B883;
}

.title-multimedia {
    font-weight: 400;
    margin-top: 10px;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.selfie-videos-container {
    padding: 0rem !important;
}

@media (max-width:960px) {
    .video-container-selfie-videos {
        grid-template-columns: 1.5fr 1fr;

    }
}

@media (max-width: 768px) {
    .video-container-selfie-videos {
        grid-template-columns: 1fr;
    }

    #purchase .purchase {
        padding: 8rem 0rem 5rem 0rem !important;
    }
}


/* MAKE A PURCHASE */

#purchase {
    background-image: url(../images/bg/purchase-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#purchase .purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0rem 5rem 0rem;
}

#purchase .purchase .purchase_card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background: #fff; */
    padding: 1rem;
    border-radius: 20px;
}

#purchase .purchase .purchase_img img {
    max-width: 100%;
    width: 25vw;
}

#purchase .purchase .purchase_btn a {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--main-color);
    transition: all .3s ease-in-out;
}

#purchase .purchase .purchase_card .purchase_btn a:hover {
    background-color: transparent;
    color: var(--main-color);
}

@media (max-width: 768px) {
    #purchase .purchase .purchase_img img {
        max-width: 100%;
        width: 100%;
    }
}

/*CONTACT*/
#contact {
    background-image: url(../images/bg/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

#contact .contact-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* .contact-address {
background: #eee;
padding: 2rem;

} */

#contact .contact-form .address,
#contact .contact-form .email-address,
#contact .contact-form .phone-number {
    margin-bottom: 2rem;
}

#contact .contact-form .address i,
#contact .contact-form .email-address i,
#contact .contact-form .phone-number i {
    float: left;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    /*#a06f76;*/
    color: #fff;
    font-size: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact .contact-form .address h4,
#contact .contact-form .email-address h4,
#contact .contact-form .phone-number h4 {
    padding: 0 0 0 55px;
    margin-top: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
}

#contact .contact-form .address p,
#contact .contact-form .email-address p,
#contact .contact-form .phone-number p {
    padding: 0 0 0 55px;
    margin-bottom: 0;
    font-size: 1rem;
}

/* #contact .form {

background: #eee;
padding: 2rem;
} */

#contact form {
    text-align: left;
}

#contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: none;
}

#contact form {
    /* max-width: 40rem; */
    margin: 1.5rem auto;
    text-align: left;
    margin-bottom: 0.8rem;
}

#contact form input,
#contact form textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.8rem;
    color: #000;
    background: #fff;
    border-radius: .5rem;
    margin: .6rem 0;
    border: none;
    font-weight: 600;
}

/* #contact form .input-box input {
width: 49%;
} */

#contact form .btn {
    margin-top: 3rem;
    margin-bottom: 3rem;
    cursor: pointer;
}

input::-webkit-input-placeholder {
    color: #000;
    opacity: .5;
}

.contact-form .form {
    /* background: var(--nav_color); */
    padding: 2rem;
    border-radius: 10px;
}

.contact-form .form,
.contact-form .contact-address {
    width: 100%;
}

#contact form textarea {
    resize: none;
    height: 100px;
}

#contact form .btn {
    margin-top: 0;
    margin-bottom: 0;
    cursor: pointer;
    background: var(--button-color);
    /*#a06f76;*/
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s ease-in-out;
    float: left;
}

#contact form .btn:hover {
    background: var(--hover-button);
    color: #fff;
    box-shadow: 0px 0px 15px var(--shadow);
}

@media (max-width: 1024px) {
    #contact .contact-form {
        flex-direction: column;
    }

    #contact .contact-form .address h4,
    #contact .contact-form .email-address h4,
    #contact .contact-form .phone-number h4 {
        padding: 0 0 0 55px;
        margin-top: 20px;
        font-size: 17px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 1rem;
    }

    .contact-form .form,
    .contact-form .contact-address {
        width: 100%;
        padding: 1rem;
    }

    .about-img,
    .about-content {
        width: 100%;
    }

}

input[type=submit] {
    background: var(--nav_color);
    /*#a06f76;*/
    color: rgb(248, 247, 247);
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .6s ease;
}

input[type=submit]:hover {
    background: var(--hover-button);
    color: #fff;
    box-shadow: 0px 0px 15px var(--shadow);
}

#contact .wpcf7-submit {
    color: #fff;
    width: 150px;
    border: none;
    border-radius: 50px;
    background: var(--main-color);
    /*#a06f76;*/
}

#contact .wpcf7-submit:hover {
    background: #fff;
    color: var(--main-color) !important;
    box-shadow: 0px 0px 15px var(--shadow);
    font-weight: 700;

}

#contact .screen-reader-response {
    color: #fff;
}

#contact .wpcf7-response-output {
    display: none !important;
}

/* footer */

.scrollUp {
    position: fixed;
    right: 5rem;
    bottom: -50%;
    background-color: var(--main-color);
    color: #fff;
    box-shadow: var(--box-shadow);
    display: inline-flex;
    padding: 1rem;
    font-size: 1rem;
    z-index: 99;
    border-radius: 50px;
    transition: bottom .3s, transform .3s;
}

.scrollUp:hover {
    transform: translateY(-.5rem);
}

.show-scroll {
    bottom: 3rem;
}

/* footer */
#footer {
    background-color: var(--footer-bg);
}

.footer .footer-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 2rem;
}

.item .footer-btns a {
    background: var(--main-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    color: #fff;
    border: 2px solid var(--main-color);
    transition: all .3s ease-in-out;
}

.item .footer-btns a:hover {
    background-color: transparent;
    color: var(--main-color);
}

.quippy {
    color: var(--main-color);
}

#owl-demo .item {
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: var(--main-color);
}